-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enh/setup cleanup #287
Merged
Merged
Enh/setup cleanup #287
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Moved tests dir to root - Moved icclim package to a new src dir The above are to follow the best practice describe in: https://packaging.python.org/en/latest/discussions/src-layout-vs-flat-layout/ From the Python Packaging Authority. - Update build and release process to avoid using deprecated features Now we will use `flit` and `build` tools to build icclim releases. - Remove setup.py in favor of the more modern pyproject.toml - Remove requirement.txt and requirement-dev.txt thanks to pyproject.toml
bzah
commented
Dec 15, 2023
This will avoid getting some segmentation fault. Context ------- Since v1.6.1 of netcdf4 py the version used for netcdf-c release the GIL. However, netcdf-c is not thread safe so from times to times threads may mess with each other when we use dask parallelization to open multiple datasets at once.
There is a drop of the code coverage in this PR, from 91% to 86%. |
bzah
commented
Dec 21, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Pull Request to resolve #259
doc/source/references/release_notes.rst
.Describe the changes you made
src
directory and automated tests in atests
directory. Both are at root level. This means to run the tests we now have to install icclim in the local environement (with for examplepip install --editable .
). This is considered a best practice according to https://packaging.python.org/en/latest/discussions/src-layout-vs-flat-layout/#src-layout-vs-flat-layoutThis is reccomended by: https://packaging.python.org/en/latest/guides/modernize-setup-py-project/
flit
. Flit is a simpler build toolchain maintained by the python packaging authority. It makes it simpler to build and release packages to pypi.TODO:
They should be added step by step and will help improve the code quality.